

/*公共样式 common.css*/
a{text-decoration: none; color: #000;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {margin:0;padding:0;font-family: "微软雅黑";} 
fieldset,img,input,button {border:0} 
address,caption,cite,code,dfn,em,strong,th,var,i {font-style:normal;font-weight:normal} 
ol,ul {list-style:none} 
caption,th {text-align:left} 
h1,h2,h3,h4,h5,h6,b {font-weight:normal}
/*img{transition: all 0.5s;}
img:hover{-webkit-transform: scale(1.06, 1.06);transform: scale(1.06);}*/
.content{
	max-width: 1920px;
	width: 100%;
	float: left;
	background: #F5F5F5;
}


/*加载动画*/
.he{
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 99999999999;
    background-color: rgba(0, 0, 0, 0.4);
}
.loader{
	width: 140px;
	height: 140px;
	text-align: center;
	position: absolute;
	top: calc(50% - 70px);
	left: calc(50% - 70px);
	padding-top: 15px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
}
#loader-1{width: 60px;height: 60px;}
.load-msg{height: 50px;line-height: 50px;color: #fff;font-size: 13px;}


/*兼容性css代码*/

/*定义子元素排列*/
.flex_direction{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
　　-webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -moz-box-orient:vertical;
    -moz-box-direction:normal;
    flex-direction:column;
    -webkit-flex-direction:column;
}
/*横向排列布局*/
.justify_content{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
　　-webkit-justify-content:center;
　　-moz-box-pack:center;
　　-webkit--moz-box-pack:center;
　　box-pack:center;
	justify-content:center;
}
/*竖向排列布局*/
.align_items{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
　　-webkit-align-items:center;
　　box-align:center;
　　-moz-box-align:center;
　　-webkit-box-align:center;
	align-items:center;
}
/*伸缩盒子布局兼容*/
.flex{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
　　box-flex:num;
　　-webkit-box-flex:num;
　　-moz-box-flex:num;
　　flex:num;
　　-webkit-flex:num;
}
/*定义子元素排列（两端对齐）*/
.space_between{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
/*定义子元素排列（两端对齐 + 自动换行）*/
.space_between_wrap{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
/*定义子元素排列（靠右对齐）*/
.flex_end{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

/*定义旋转180度*/
.rotate_180{
	transform:rotate(180deg);
	-ms-transform:rotate(180deg); 	/* IE 9 */
	-moz-transform:rotate(180deg); 	/* Firefox */
	-webkit-transform:rotate(180deg); /* Safari 和 Chrome */
	-o-transform:rotate(180deg); 	/* Opera */
}

/*定义超出两行显示...*/
.txt_1{
	overflow: hidden;
    text-overflow: ellipsis; 
    -o-text-overflow: ellipsis;
    white-space:nowrap;
}
.txt_2{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2; 
}
.txt_3{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3; 
}
.txt_5{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:5; 
}
.txt_6{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:6; 
}
.txt_7{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:7; 
}
.txt_8{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:8; 
}
.txt_9{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:9; 
}


/*隐藏Y轴滚动条还能继续滚动兼容写法*/
.overf_y{
	overflow-y: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    &::-webkit-scrollbar { 
      display: none;
    }
}
.overf_y::-webkit-scrollbar{display: none;}


/*弹出导航*/
.part2_ma{width: 1400px;float: left;margin-top: 125px;}
.part2_mas{width: 100%;float: left;}
.part2_top{
	width: 100%;
	height: 80px;
	float: left;
	position: relative;
}
.part2_top>a{
	display: inline-block;
	width: 40px;
	height: 40px;
	float: right;
	margin-top: 20px;
	overflow: hidden;
	margin-right: 30px;
}
.part2_top>a img{
	width: 100%;
	height: 100%;
	float: left;
	transition: all 0.5s;
}
.part2_top>a:hover img{transform: scale(1.1);}
.nav_none{
	width: 766px;
	height: 60px;
	background: #0028FF;
	float: left;
	position: absolute;
	right: 0px;
	top:10px;
	display: none;
}
.nav_none>a{
	width: 62px;
	height: 60px;
	float: right;
}
.nav_none>a img{
	width: 25px;
	float: left;
	height: 25px;
	transition: all 0.5s;
}
.nav_none>a:hover img{transform: rotate(180deg);}
.nav_none>ul{
	width: 640px;
	height: 60px;
	float: left;
	padding: 0 32px;
}
.nav_none>ul li{
	height: 40px;
	float: left;
	margin-top: 10px;
}
.nav_none>ul li a{
	display: inline-block;
	padding: 0 12px;
	float: left;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	border-radius: 20px;
	color: #fff;
	text-align: center;
	transition: all 0.5s;
}
.nav_none>ul li a:hover{background: #fff;color: #0028FC;}

/*底部样式*/
.c_footer{
	width: 100%;
	height: 220px;
	float: left;
}
.c_footer_ma{width: 1400px;float: left;}
.c_footer_logo{
	width: 358px;
	float: left;
}
.c_footer_logo img{
	width: 210px;
	height: 78px;
	float: left;
	margin-top: 53px;
}
.c_footer_menu{
	width: 702px;
	float: left;
	margin-top: 44px;
}
.c_footer_menu_list{float: left;width: 234px;}
.c_footer_menu_list span{
	display: inline-block;
	width: 100%;
	float: left;
	height: 25px;
	line-height: 25px;
	font-size: 18px;
	color: #333;
	font-weight: bold;
}
.c_footer_menu_list span i{
	display: inline-block;
	width: 4px;
	height: 24px;
	float: left;
	background: #333;
	margin-right: 10px;
}
.c_footer_menu_list ul{width: 100%;float: left;margin-top: 16px;}
.c_footer_menu_list ul li{
	width: 100%;
	float: left;
	height: 16px;
	margin-top: 16px;
}
.c_footer_menu_list ul li:nth-child(1){margin-top: 0;}
.c_footer_menu_list ul li a{
	display: inline-block;
	height: 16px;
	line-height: 16px;
	float: left;
	font-size: 14px;
	color: #333333;
	text-indent: 14px;
	transition: all 0.5s;
}
.c_footer_menu_list ul li a:hover{color: #FFD000;}
.c_footer_code{
	width: 150px;
	float: right;
	height: 150px;
	margin-top: 37px;
}
.c_footer_code img{width: 100%;height: 100%;float: left;}



/*面包屑*/
.pr_crumbs{
	width: 100%;
	height: 60px;
	float: left;
}
.pr_crumbs span{
	display: inline-block;
	width: 1400px;
	height: 60px;
	line-height: 60px;
	font-size:14px;
	color: #666666;
}
.pr_crumbs span a{color: #666666;}
.pr_crumbs span a:hover{color: #4D69FF;}


/*分页*/
.pages_main{
	width: 100%;
	height: 30px;
	float: left;
	padding: 50px 0px;
}
.pages span{
	display: inline-block;
	width: 58px;
	height: 28px;
	float: left;
	line-height: 28px;
	font-size: 14px;
	color: #999999;
	text-align: center;
	border:1px solid #B3B3B3;
	margin-left:10px;
	cursor: pointer;
	background: #fff;
}
.pages span:hover{background: #3353FF;color: #fff;border:1px solid #3353FF;}
.pages a{
	display: inline-block;
	width: 28px;
	height: 28px;
	line-height: 28px;
	float: left;
	font-size: 14px;
	color: #999999;
	text-align: center;
	margin-left:10px;
	background: #fff;
	transition: all 0.5s;
	border:1px solid #B3B3B3;
}
.pages a:hover,.pages .page_active{background: #3353FF;color: #fff;border:1px solid #3353FF;}



/*订购弹窗样式*/
.order_bg{
    width: 100%;
    position: fixed;
    top:0px;
    bottom: 0px;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    transition: all 0.5s;
}
.order_pop{
    width: 935px;
    height: 706px;
    float: left;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}
.order_pop>p{
    display: inline-block;
    width: 100%;
    height: 68px;
    line-height: 68px;
    float: left;
    text-align: center;
    font-size: 32px;
    letter-spacing: 6px;
    color: #fefefe;
    background: #005cc9;
}
.pop_cont{
    width: 100%;
    height: calc(706px - 68px);
    float: left;
}
.pop_form{
    width: 708px;
    /*height: 492px;*/
    float: left;
}
.pop_form label{
    display: inline-block;
    width: 100%;
    min-height: 50px;
    padding: 12px 0px;
    float: left;
}
.pop_form label>span{
    display: inline-block;
    width: 32px;
    height: 50px;
    line-height: 50px;
    color: #ff0000;
    font-size: 28px;
    text-align: left;
    float: left;
}
.pop_form label>input{
    display: inline-block;
    width: calc(100% - 32px);
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #000;
    text-indent: 35px;
    float: left;
    background: #eceaea;
    outline: none;
}
.pop_form label>textarea{
    display: inline-block;
    width: calc(100% - 32px);
    height: 150px;
    padding: 10px;
    float: left;
    background: #eceaea;
    text-indent: 25px;
    font-size: 16px;
    color: #000;
    line-height: 2em;
    border:0px;
    outline: none;
    resize: none;
}
.pop_form label>textarea::-webkit-scrollbar{display: none;}
.sub_btn{
    width: 100%;
    height: 40px;
    float: left;
    margin-top: 28px;
}
.sub_btn a{
    display: inline-block;
    width: 216px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    color: #fff;
    text-align:center;
    letter-spacing: 1px;
    float: left;
    background: #005cc9;
    border-radius: 20px;
}
.sub_btn a:nth-child(1){margin-right: 52px;}


/*在线客服样式*/
.online{
	width: 39px;
	float: left;
	position: fixed;
	top:80px;
	right: -1px;
	transition: all 0.5s;
	z-index: 10000000;
}
.online>a{
	display: inline-block;
	width: 39px;
	height: 161px;
	float: left;
	background: url('../img/icon-zxkf.png') no-repeat;
	background-size: 100%;
}
.online_right{
	width: 146px;
	float: left;
	background: url('../img/zaixinkefu.png') no-repeat;
	background-size: 222 431px;
	background-position: top center;
	box-shadow: 0px 8px 28px rgba(0,0,0,0.3);
	position: absolute;
	top:0px;
	left:38px; 
}
.online_right>img{
	width: 86px;
	height: 86px;
	float: left;
	margin:0 30px;
	margin-top: 98px;
	margin-bottom: 12px;
}
.online_right i{
	display: inline-block;
	width: 104px;
	margin:0 21px;
	float: left;
	border-bottom: 1px dashed #999999;
}
.online_right ul{
	width: 106px;
	float: left;
	margin:0 20px;
	padding: 4px 0;
}
.online_right ul li{
	width: 100px;
	height: 38px;
	float: left;
}
.online_right ul li a{
	width: 100%;
	height: 38px;
	line-height: 38px;
	float: left;
	font-size: 14px;
	color: #0006ff;
}
.online_con{
	width: 106px;
	padding: 0 20px;
	height: 76px;
	float: left;
}
.online_con span{
	display: inline-block;
	width: 100%;
	height: 22px;
	float: left;
	line-height: 22px;
	font-size: 14px;
	color: #2b73af;
	margin-top: 13px;
}
.online_con span img{
	width: 22px;
	height: 22px;
	float: left;
	margin-left: 4px;
	margin-right: 8px;
}
.online_con p{
	display: inline-block;
	width: 100%;
	height: 28px;
	font-size: 14px;
	float: left;
	line-height: 28px;
	color: #2b73af;
	text-align: center;
}



/*功能样式*/
.funct{
	width: 50px;
	height: 200px;
	float: left;
	position: fixed;
	bottom: 45px;
	right: 0px;
	background: #1e5a8a;
	box-shadow: 0px 9px 15px rgba(0,0,0,0.15);
	z-index: 1000000; 
}
.funct a{
	width: 100%;
	height: 50px;
	float: left;
	position: relative;
}
.funct a>ul{
	width: 214px;
    height: 45px;
    float: left;
    position: absolute;
    right: 60px;
    display: none;
    transition: all 0.5s;
}
.funct a>ul li{height: 45px;float: left;}
.funct a>ul li img{width: 30px;height: 30px;float: left;}
.funct a:nth-child(1){background: #fff000;}
.funct a:nth-child(1)>img{width: 32px;height: 24px;float: left;}
.funct a:nth-child(2)>img{width: 30px;height: 30px;float: left;}
.funct a:nth-child(3)>img{width: 30px;height: 26px;float: left;}
.funct a:nth-child(4)>img{width: 31px;height: 31px;float: left;}


/*留言板*/
.msg_agebtn{
	width:62px;
	height:210px;
	float:left;
	position:fixed;
	z-index:999;
	bottom:181px;
	left:-2px;
	cursor: pointer;
	transition: all 0.5s;
}
.msg_agebtn img{width:100%;height:100%;float:left;}
.msg_age{
	width: 250px;
	float: left;
	box-shadow: 0px 9px 15px rgba(0,0,0,0.15); 
	position: fixed;
	left: 20px;
	bottom:45px;
	background: #fff;
	z-index: 1000000;
	transition: all 0.5s;
}
.msg_age span{
	display: inline-block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	float: left;
	font-size: 22px;
	color: #fff;
	background: #146095;
	text-align: center;
	letter-spacing: 4.8px;
	position: relative;
}
.msg_age span i{
	line-height: 40px;
	font-size: 16px;
	color: #fff;
	position: absolute;
	right: 6px;
	cursor: pointer;
}
.msg_age_form{
	width: 220px;
	float: left;
	padding: 20px 15px;
}
.msg_age_form input{
	width: 100%;
	height: 38px;
	float: left;
	line-height: 38px;
	font-size: 14px;
	color: #333;
	text-indent: 8px;
	background: #f5f5f5;
	outline: none;
	margin-top: 10px;
}
.msg_age>a{
	display: inline-block;
	width: 130px;
	height: 38px;
	float: left;
	line-height: 38px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	background: #146095;
	margin: 0 60px;
	margin-top:4px;
	margin-bottom: 20px; 
}




/*二维码弹窗样式*/
.qrcode_rbac{
	width: 100%;
	position: fixed;
	top:0px;
	bottom: 0px;
	float: left;
	background: rgba(0,0,0,0.5);
	z-index: 99999;
}
.qrcode_img{
	width: 951px;
	height: 665px;
	float: left;
	background: url(../img/ziyuanbaojiatanchuang-bg-1.png) no-repeat;
	background-size: 100% 100%;
}
.qrcode_img>span{
	display: inline-block;
	width: 100%;
	height: 70px;
	line-height: 70px;
	float: left;
	text-align: center;
	font-size: 32px;
	color: #fefefe;
}
.qrcode_imgs{
	width: 100%;
	height: 390px;
	float: left;
}
.qrcode_imgs img{width: 260px;height: 260px;float: left;}
.qrcode_img>p{
	display: inline-block;
	width: 100%;
	height: 56px;
	line-height: 56px;
	font-size: 28px;
	color: #333333;
	float: left;
	text-align: center;
}
.qrcode_btn{
	width: 100%;
	padding: 40px 0;
	float: left;
}
.qrcode_btn a{
	display: inline-block;
	width: 218px;
	height: 50px;
	float: left;
	line-height: 50px;
	text-align: center;
	font-size: 24px;
	color: #fff;
	background: url(../img/ziyuanbaojia-anniu.png) no-repeat;
	background-size: 100% 100%;
}


/*斜切样式*/
.chamfer{
    transform: skewY(-10deg);
}